2024-03-12 12:42:17 +00:00
|
|
|
import { vitePlugin as remix } from "@remix-run/dev"
|
|
|
|
import { defineConfig } from "vite"
|
|
|
|
import tsconfigPaths from "vite-tsconfig-paths"
|
2024-03-05 16:56:17 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [
|
|
|
|
remix({
|
|
|
|
ssr: false,
|
2024-03-12 12:42:17 +00:00
|
|
|
ignoredRouteFiles: ["**/*.css"]
|
2024-03-05 16:56:17 +00:00
|
|
|
}),
|
2024-03-12 12:42:17 +00:00
|
|
|
tsconfigPaths()
|
2024-03-05 16:56:17 +00:00
|
|
|
],
|
|
|
|
server: {
|
|
|
|
fs: {
|
|
|
|
// Restrict files that could be served by Vite's dev server. Accessing
|
|
|
|
// files outside this directory list that aren't imported from an allowed
|
|
|
|
// file will result in a 403. Both directories and files can be provided.
|
|
|
|
// If you're comfortable with Vite's dev server making any file within the
|
|
|
|
// project root available, you can remove this option. See more:
|
|
|
|
// https://vitejs.dev/config/server-options.html#server-fs-allow
|
2024-03-12 12:42:17 +00:00
|
|
|
allow: [
|
|
|
|
"app",
|
|
|
|
"node_modules/@fontsource-variable/manrope",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|