fixed tailwind intelliscence
This commit is contained in:
parent
5e3c90392a
commit
0dec449704
@ -16,7 +16,6 @@ const purgecss = {
|
||||
/^gc/,
|
||||
/^gs/,
|
||||
/^gi/,
|
||||
/^gi/,
|
||||
/^gz/,
|
||||
/^desc/,
|
||||
/^zoom/,
|
||||
|
@ -1,6 +1,8 @@
|
||||
const toml = require("toml");
|
||||
const fs = require("fs");
|
||||
const getConfig = fs.readFileSync("config.toml", "utf8");
|
||||
const path = require("path");
|
||||
const configPath = path.join(__dirname, "config.toml");
|
||||
const getConfig = fs.readFileSync(configPath, "utf8");
|
||||
const theme = JSON.parse(JSON.stringify(toml.parse(getConfig)));
|
||||
|
||||
let font_base = Number(theme.params.fonts.font_size.base.replace("px", ""));
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "hugoplate",
|
||||
"description": "hugo tailwindcss boilerplate",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"license": "MIT",
|
||||
"author": "zeon.studio",
|
||||
"scripts": {
|
||||
|
Loading…
Reference in New Issue
Block a user