Skip to content

Commit

Permalink
feature: this adds the vite integrity plugin to support assetsAreCurr…
Browse files Browse the repository at this point in the history
…ent check
  • Loading branch information
mmachatschek committed Apr 13, 2024
1 parent 3c6661d commit 3d38686
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"sass": "^1.74.1",
"sql-formatter": "^4.0.2",
"vite": "^5.2.8",
"vite-plugin-manifest-sri": "^0.2.0",
"vue": "^2.7.16",
"vue-json-pretty": "^1.9.5",
"vue-router": "^3.6.5"
Expand Down
20 changes: 15 additions & 5 deletions resources/views/layout.blade.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
@php
use Illuminate\Support\Facades\Vite;
use Illuminate\Foundation\Vite as ViteFoundation;
$viteDataSchemaLight = new ViteFoundation();
$viteDataSchemaLight->useStyleTagAttributes([
'data-schema' => 'light',
]);
$viteDataSchemaDark = new ViteFoundation();
$viteDataSchemaDark->useStyleTagAttributes([
'data-schema' => 'dark',
]);
@endphp
<!DOCTYPE html>
<html lang="en">

<head>
<!-- Meta Information -->
<meta charset="utf-8">
Expand All @@ -16,10 +28,8 @@
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:300,400,500,600" rel="stylesheet" />

<link rel="preload" as="style" href="{{ Vite::asset('resources/sass/styles.scss', 'vendor/horizon') }}" data-scheme="light" />
<link rel="stylesheet" href="{{ Vite::asset('resources/sass/styles.scss', 'vendor/horizon') }}" data-scheme="light" />
<link rel="preload" as="style" href="{{ Vite::asset('resources/sass/styles-dark.scss', 'vendor/horizon') }}" data-scheme="dark" />
<link rel="stylesheet" href="{{ Vite::asset('resources/sass/styles-dark.scss', 'vendor/horizon') }}" data-scheme="dark" />
{{ $viteDataSchemaLight('resources/sass/styles.scss', 'vendor/horizon') }}
{{ $viteDataSchemaDark('resources/sass/styles-dark.scss', 'vendor/horizon') }}
</head>
<body>
<div id="horizon" v-cloak>
Expand Down Expand Up @@ -147,6 +157,6 @@
window.Horizon = @json($horizonScriptVariables);
</script>

@vite('resources/js/app.js', 'vendor/horizon')
@vite('resources/js/app.js', 'vendor/horizon')
</body>
</html>
2 changes: 2 additions & 0 deletions vite.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import vue2 from "@vitejs/plugin-vue2";
import { defineConfig } from "vite";
import laravel from "laravel-vite-plugin";
import manifestSRI from "vite-plugin-manifest-sri";

const config = defineConfig({
plugins: [
Expand All @@ -10,6 +11,7 @@ const config = defineConfig({
"resources/js/app.js",
]),
vue2(),
manifestSRI(),
],
resolve: {
alias: {
Expand Down

0 comments on commit 3d38686

Please sign in to comment.