Skip to content

Commit 00f3972

Browse files
committed
build version 4.35.1
1 parent 97b23ee commit 00f3972

File tree

8 files changed

+50
-9
lines changed

8 files changed

+50
-9
lines changed

public/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"/app.js": "/app.js?id=ddcc43d6998d71fbb3ede4140ea456ab",
2+
"/app.js": "/app.js?id=2251026ee28ac304973f3e27bd8421c1",
33
"/manifest.js": "/manifest.js?id=61f2d62cc41feccba141cbb9c3075397",
4-
"/app.css": "/app.css?id=9b1252527557e1ad56a5399f3afae262",
5-
"/vendor.js": "/vendor.js?id=704698a6c2a7ccceb312b9fb9fd95ab6",
4+
"/app.css": "/app.css?id=02ef6075442a7edd474ef9e675829356",
5+
"/vendor.js": "/vendor.js?id=cfc2d444cbfa95495daf1857637ccccc",
66
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2?id=c8390e146be0a3c8a5498355dec892ae",
77
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2?id=b0735c7dd6126471acbaf9d6e9f5e41a",
88
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2?id=7c1fb232e3050e36dcc1aee61f1d0c06",

public/vendor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/vendor.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webpack.mix.js

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
let mix = require('laravel-mix')
2+
let tailwindcss = require('tailwindcss')
3+
let path = require('path')
4+
let postcssImport = require('postcss-import')
5+
let postcssRtlcss = require('postcss-rtlcss')
6+
7+
/*
8+
|--------------------------------------------------------------------------
9+
| Mix Asset Management
10+
|--------------------------------------------------------------------------
11+
|
12+
| Mix provides a clean, fluent API for defining some Webpack build steps
13+
| for your Laravel application. By default, we are compiling the Sass
14+
| file for the application as well as bundling up all the JS files.
15+
|
16+
*/
17+
18+
mix
19+
.js('resources/js/app.js', 'public')
20+
.vue({ version: 3 })
21+
.sourceMaps()
22+
.extract()
23+
.setPublicPath('public')
24+
.postCss('resources/css/app.css', 'public', [
25+
postcssImport(),
26+
tailwindcss('tailwind.config.js'),
27+
postcssRtlcss(),
28+
])
29+
.copy('resources/fonts/', 'public/fonts')
30+
.alias({ '@': path.join(__dirname, 'resources/js/') })
31+
.webpackConfig({ output: { uniqueName: 'laravel/nova' } })
32+
.options({
33+
vue: {
34+
exposeFilename: true,
35+
compilerOptions: {
36+
isCustomElement: tag => tag.startsWith('trix-'),
37+
},
38+
},
39+
processCssUrls: false,
40+
})
41+
.version()

0 commit comments

Comments
 (0)