mirror of
https://github.com/frappe/books.git
synced 2024-11-08 06:44:06 +00:00
cc675e54ff
- enable source maps for main process - run main and build process using the same command - change dev command to `yarn dev`
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import vue from '@vitejs/plugin-vue';
|
|
import path from 'path';
|
|
import { defineConfig } from 'vite';
|
|
|
|
/**
|
|
* This is a work in progress vite config. Currently only dev works.
|
|
*/
|
|
|
|
// https://vitejs.dev/config/
|
|
export default () => {
|
|
let port = 6969;
|
|
let host = '0.0.0.0';
|
|
if (process.env.VITE_PORT && process.env.VITE_HOST) {
|
|
port = Number(process.env.VITE_PORT);
|
|
host = process.env.VITE_HOST;
|
|
}
|
|
|
|
return defineConfig({
|
|
server: { host, port, strictPort: true },
|
|
root: path.resolve(__dirname, './src'),
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
vue: 'vue/dist/vue.esm-bundler.js',
|
|
fyo: path.resolve(__dirname, './fyo'),
|
|
src: path.resolve(__dirname, './src'),
|
|
schemas: path.resolve(__dirname, './schemas'),
|
|
backend: path.resolve(__dirname, './backend'),
|
|
models: path.resolve(__dirname, './models'),
|
|
utils: path.resolve(__dirname, './utils'),
|
|
regional: path.resolve(__dirname, './regional'),
|
|
reports: path.resolve(__dirname, './reports'),
|
|
dummy: path.resolve(__dirname, './dummy'),
|
|
fixtures: path.resolve(__dirname, './fixtures'),
|
|
},
|
|
},
|
|
});
|
|
};
|