28 lines
611 B
TypeScript
28 lines
611 B
TypeScript
import { vitePlugin as remix } from '@remix-run/dev'
|
|
import { installGlobals } from '@remix-run/node'
|
|
import { defineConfig } from 'vite'
|
|
import babel from 'vite-plugin-babel'
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
|
|
|
installGlobals()
|
|
|
|
export default defineConfig(({ isSsrBuild }) => ({
|
|
base: '/admin/',
|
|
build: isSsrBuild ? { target: 'ES2022' } : {},
|
|
plugins: [
|
|
remix({
|
|
basename: '/admin/',
|
|
}),
|
|
tsconfigPaths(),
|
|
babel({
|
|
filter: /\.[jt]sx?$/,
|
|
babelConfig: {
|
|
presets: ['@babel/preset-typescript'],
|
|
plugins: [
|
|
['babel-plugin-react-compiler', {}],
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
}))
|