Skip to content

Commit

Permalink
Merge pull request #527 from tighten/ajm/fix-frontend-build
Browse files Browse the repository at this point in the history
Fix css for prod build
  • Loading branch information
andrewmile authored Dec 13, 2024
2 parents a8c67c5 + ae3696a commit 67a44f3
Show file tree
Hide file tree
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
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit 67a44f3

Please sign in to comment.