mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-26 17:36:15 +00:00
cd6fdf3b29
This commit fixes the style issues introduced in 6e31b44
according to the output
from Prettier.
Details: None
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
plugins: [svelte()],
|
|
optimizeDeps: {
|
|
exclude: ["phosphor-svelte"],
|
|
},
|
|
// resolve: {
|
|
// alias: {
|
|
// '%': __dirname + '/src',
|
|
// }
|
|
// },
|
|
});
|