0.1.3 • Published 2 years ago

@zuckersalzundpfeffer/gyuto-grid-sugar v0.1.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

gyutogridsugar-starter

1. Install Gridsome CLI tool if you don't have

npm install --global @gridsome/cli

2. Create a Gridsome project

  1. gridsome create my-gyuto-site to install default starter
  2. cd my-gyuto-site to open the folder

3. Configure

  1. Create Component page in Gyuto
  2. Create Website in Gyuto->Einstellungen->Websites
  3. Create Site Config in Gyuto->Einstellungen->Site Config
  4. npx node_modules/@zuckersalzundpfeffer/gyuto-grid-sugar init
  5. Questions? Read this https://gyuto.zuckersalzundpfeffer.de/

  6. 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

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.24

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago