Last change
on this file since f457265 was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
780 bytes
|
Rev | Line | |
---|
[0924b6c] | 1 | const mix = require('laravel-mix');
|
---|
| 2 |
|
---|
| 3 | mix.styles([
|
---|
| 4 | "node_modules/bootstrap/dist/css/bootstrap.min.css",
|
---|
| 5 | "node_modules/swiper/dist/css/swiper.min.css",
|
---|
| 6 | "resources/css/style.css",
|
---|
| 7 | ], "public/assets/css/bundle.css");
|
---|
| 8 |
|
---|
| 9 | mix.js([
|
---|
| 10 | "resources/js/bootstrap.js",
|
---|
| 11 | "resources/js/main.js"
|
---|
| 12 | ], "public/assets/js/app.js").scripts([
|
---|
| 13 | "node_modules/popper.js/dist/umd/popper.min.js",
|
---|
| 14 | "node_modules/smooth-scroll/dist/js/smooth-scroll.min.js",
|
---|
| 15 | "node_modules/swiper/dist/js/swiper.min.js",
|
---|
| 16 | ], "public/assets/js/bundle.js");
|
---|
| 17 |
|
---|
| 18 | mix.copy("node_modules/noty/lib/noty.min.js", "public/assets/plugins/noty/js/noty.min.js");
|
---|
| 19 | mix.styles([
|
---|
| 20 | "node_modules/noty/lib/themes/sunset.css",
|
---|
| 21 | "node_modules/noty/lib/noty.css",
|
---|
| 22 | ], "public/assets/plugins/noty/css/noty.min.css");
|
---|
Note:
See
TracBrowser
for help on using the repository browser.