All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.client.svelte.vite.config.js Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
import { sveltekit } from '@sveltejs/kit/vite';
import path from 'path';

const config = {
  plugins: [sveltekit()],
  resolve: {
    alias: [
      { find: '@', replacement: path.resolve('src/main/webapp') },
      { find: '@assets', replacement: path.resolve('src/main/webapp/assets') },
    ],
  },
};

export default config;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy