add config of koala
This commit is contained in:
parent
0de6ec510a
commit
1af02caff4
34
koala-config.json
Normal file
34
koala-config.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
// Default project settings, you can edit it and set custom settings.
|
||||
{
|
||||
// The mappings of source directory and output directory
|
||||
"mappings": [
|
||||
{
|
||||
"src": "assets/src/sass/",
|
||||
"dest": "assets/dist/css/"
|
||||
},
|
||||
{
|
||||
"src": "assets/src/js/",
|
||||
"dest": "assets/dist/js/"
|
||||
}
|
||||
],
|
||||
|
||||
// Add the ignore rules that Koala will not search them.
|
||||
// e.g. ["*.json", "*.txt", "test", "path/libs"]
|
||||
"ignores": [
|
||||
"assets/bower_components",
|
||||
"node_modules",
|
||||
"vendor",
|
||||
"assets/libs",
|
||||
"assets/dist"
|
||||
],
|
||||
|
||||
// Options of Compilers.
|
||||
"options": {
|
||||
// "key": "val",
|
||||
// "key2": "val2"
|
||||
// ...
|
||||
},
|
||||
|
||||
// An array of filesystem paths which should be searched for js/LESS/Sass templates imported with the @import/@append/@prepend directive.
|
||||
"includePaths": []
|
||||
}
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<link rel="stylesheet" href="../assets/dist/app.min.css">
|
||||
<link rel="stylesheet" href="../assets/libs/skins/{{ Option::get('color_scheme') }}.min.css">
|
||||
|
||||
<link rel="stylesheet" href="../assets/dist/css/auth.min.css">
|
||||
<link rel="stylesheet" href="../assets/dist/css/auth.css">
|
||||
|
||||
<style>{{ Option::get('custom_css') }}</style>
|
||||
</head>
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
<!-- App Scripts -->
|
||||
<script type="text/javascript" src="../assets/dist/app.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../assets/dist/js/auth.min.js"></script>
|
||||
<script type="text/javascript" src="../assets/dist/js/auth.js"></script>
|
||||
|
||||
@if (isset($_SESSION['msg']))
|
||||
<script>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<!-- AdminLTE Skins -->
|
||||
<link rel="stylesheet" href="./assets/libs/skins/{{ Option::get('color_scheme') }}.min.css">
|
||||
|
||||
<link rel="stylesheet" href="./assets/dist/css/index.min.css">
|
||||
<link rel="stylesheet" href="./assets/dist/css/index.css">
|
||||
|
||||
<style>{{ Option::get('custom_css') }}</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<!-- AdminLTE Skins -->
|
||||
<link rel="stylesheet" href="../assets/libs/skins/{{ Option::get('color_scheme') }}.min.css">
|
||||
|
||||
<link rel="stylesheet" href="../assets/dist/css/skinlib.min.css">
|
||||
<link rel="stylesheet" href="../assets/dist/css/skinlib.css">
|
||||
|
||||
@yield('style')
|
||||
|
||||
|
|
@ -143,7 +143,7 @@
|
|||
<!-- App Scripts -->
|
||||
<script type="text/javascript" src="../assets/dist/app.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../assets/dist/js/skinlib.min.js"></script>
|
||||
<script type="text/javascript" src="../assets/dist/js/skinlib.js"></script>
|
||||
|
||||
@yield('script')
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<!-- AdminLTE Skins -->
|
||||
<link rel="stylesheet" href="../assets/libs/skins/{{ Option::get('color_scheme') }}.min.css">
|
||||
|
||||
<link rel="stylesheet" href="../assets/dist/css/user.min.css">
|
||||
<link rel="stylesheet" href="../assets/dist/css/user.css">
|
||||
|
||||
@yield('style')
|
||||
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<!-- App Scripts -->
|
||||
<script type="text/javascript" src="../assets/dist/app.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../assets/dist/js/user.min.js"></script>
|
||||
<script type="text/javascript" src="../assets/dist/js/user.js"></script>
|
||||
|
||||
@yield('script')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user