mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
import eslint from 'vite-plugin-eslint';
|
|
|
|
export default defineNuxtConfig({
|
|
srcDir: 'src',
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
typescript: {
|
|
strict: true,
|
|
typeCheck: true,
|
|
},
|
|
imports: {
|
|
autoImport: false,
|
|
},
|
|
vite: {
|
|
plugins: [eslint()],
|
|
},
|
|
});
|