1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { join } from 'path'; /** * @type {import('vite').UserConfig} */ const config = { base: '', resolve: { alias: { avr8js: join(__dirname, '../src') }, }, server: { open: true, }, }; export default config;