Skip to content

Commit

Permalink
move from cjs to mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
loftwah committed Jul 14, 2024
1 parent 4df4d49 commit 1bafc2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vite.config.ts → vite.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import RubyPlugin from 'vite-plugin-ruby'
import tailwindcss from 'tailwindcss'
import autoprefixer from 'autoprefixer'
import { defineConfig } from 'vite';
import RubyPlugin from 'vite-plugin-ruby';
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';

export default defineConfig({
plugins: [
Expand All @@ -16,4 +16,4 @@ export default defineConfig({
},
},
assetsInclude: ['**/*.png', '**/*.jpg', '**/*.jpeg', '**/*.gif', '**/*.svg'],
})
});

0 comments on commit 1bafc2e

Please sign in to comment.