12345678910111213141516171819202122232425262728293031323334 |
- import { defineConfig } from 'vite';
- import * as path from 'path';
- import reactRefresh from '@vitejs/plugin-react';
- const svgrPlugin = require('vite-plugin-svgr');
- // https://vitejs.dev/config/
- export default defineConfig({
- base: '',
- // This changes the out put dir from dist to build
- // comment this out if that isn't relevant for your project
- build: {
- outDir: 'build',
- },
- server: {
- port: 3001,
- },
- plugins: [
- reactRefresh(),
- svgrPlugin({
- svgrOptions: {
- icon: true,
- // ...svgr options (https://react-svgr.com/docs/options/)
- },
- }),
- ],
- resolve: {
- // extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json"],
- alias: {
- '@': path.resolve(__dirname, './src'),
- // be careful to include server modules in the client
- '@server': path.resolve(__dirname, './../server/src'),
- },
- },
- });
|