ラベル反応スタイルの適用
4798 ワード
追加
.postCss('resources/css/app.css', 'public/css');
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/js/app.js', 'public/js')
.react()
.postCss('resources/css/app.css', 'public/css');
いいですよ.もちろんです.
'resources/css/app.css'
ディレクトリでファイルを生成する必要があります.<link href="{{ mix('css/app.css') }}" rel="stylesheet">
を<head>
tagの間に入れる<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="example"></div>
<script src="{{ mix('js/app.js') }}"></script>
</body>
</html>
ここではasset()
、大文字mix()
と書く理由は簡単ですが、webpackを使います.mix.つまりjsを修正し、そこに定義されたパスを書きます.Reference
この問題について(ラベル反応スタイルの適用), 我々は、より多くの情報をここで見つけました https://velog.io/@hur-kyuh-leez/라라벨-react-styling-적용-하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol