0.1.3 • Published 3 years ago
@zuckersalzundpfeffer/gyuto-grid-sugar v0.1.3
gyutogridsugar-starter
1. Install Gridsome CLI tool if you don't have
npm install --global @gridsome/cli
2. Create a Gridsome project
gridsome create my-gyuto-siteto install default startercd my-gyuto-siteto open the folder
3. Configure
- Create Component page in Gyuto
- Create Website in Gyuto->Einstellungen->Websites
- Create Site Config in Gyuto->Einstellungen->Site Config
npx node_modules/@zuckersalzundpfeffer/gyuto-grid-sugar initQuestions? Read this https://gyuto.zuckersalzundpfeffer.de/
OPTIONAL - Create own css theme file
// Example tailwind.config.js to show how to implement own css file
const fs = require('fs')
const plugin = require('tailwindcss/plugin')
module.exports = {
// Options
prefix: '',
important: false,
separator: ':',
theme: {
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
},
},
variants: {},
plugins: [
// ...
require('postcss-import'),
// require('tailwindcss-dark-mode')(),
require('@tailwindcss/forms'),
plugin(function ({ addUtilities, postcss }) {
const css = fs.readFileSync('./assets/css/my-gyuto-theme.css', 'utf-8')
addUtilities(postcss.parse(css).nodes)
}),
],
purge: {
enabled: true,
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`plugins/**/*.{js,ts}`,
],
safelist: [
'h-80',
],
},
jit: true,
exposeConfig: false,
viewer: false,
}0.1.3
3 years ago
0.1.2
3 years ago
0.1.1
3 years ago
0.1.0
3 years ago
0.0.24
4 years ago
0.0.23
4 years ago
0.0.22
4 years ago
0.0.21
4 years ago
0.0.20
4 years ago
0.0.19
4 years ago
0.0.18
4 years ago
0.0.17
4 years ago
0.0.16
4 years ago
0.0.15
4 years ago
0.0.14
4 years ago
0.0.13
4 years ago
0.0.12
4 years ago
0.0.11
4 years ago
0.0.10
4 years ago
0.0.9
4 years ago
0.0.8
4 years ago
0.0.7
4 years ago
0.0.6
4 years ago
0.0.5
4 years ago
0.0.4
4 years ago
0.0.3
4 years ago
0.0.2
4 years ago
0.0.1
4 years ago