Skip to content

Commit

Permalink
Fix css for prod build
Browse files Browse the repository at this point in the history
andrewmile committed Dec 13, 2024
1 parent 5f0d024 commit ae3696a
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion resources/js/app.js
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ window.axios.defaults.headers.common = {
import Vue from 'vue';
import VCalendar from 'v-calendar';
import Dismiss from './directives/Dismiss';
import '../css/app.css'

Vue.use(VCalendar);

2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import vue from '@vitejs/plugin-vue2';
export default defineConfig({
plugins: [
laravel({
input: 'resources/js/app.js',
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
vue({

0 comments on commit ae3696a

Please sign in to comment.