chore: change vite.config.js to vite.config.ts

This commit is contained in:
oe.kazuma 2023-05-09 18:02:12 +09:00
parent 39a463c92f
commit cdd98b39f5
2 changed files with 6 additions and 8 deletions

View File

@ -1,8 +0,0 @@
import { sveltekit } from '@sveltejs/kit/vite';
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()]
};
export default config;

6
vite.config.ts Normal file
View File

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});