feat: shuffle icon on AudioPlayer, New Home Screen
This commit is contained in:
39
.idx/dev.nix
Normal file
39
.idx/dev.nix
Normal file
@@ -0,0 +1,39 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
# Which nixpkgs channel to use.
|
||||
channel = "stable-23.11"; # or "unstable"
|
||||
|
||||
# Use https://search.nixos.org/packages to find packages
|
||||
packages = [
|
||||
pkgs.corepack
|
||||
];
|
||||
|
||||
# Sets environment variables in the workspace
|
||||
# env = {
|
||||
# SOME_ENV_VAR = "hello";
|
||||
# };
|
||||
|
||||
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
|
||||
# idx.extensions = [
|
||||
# "angular.ng-template"
|
||||
# ];
|
||||
|
||||
# Enable previews and customize configuration
|
||||
idx.previews = {
|
||||
enable = true;
|
||||
previews = {
|
||||
web = {
|
||||
command = [
|
||||
"pnpm"
|
||||
"run"
|
||||
"dev"
|
||||
"--port"
|
||||
"$PORT"
|
||||
];
|
||||
manager = "web";
|
||||
# Optionally, specify a directory that contains your web app
|
||||
# cwd = "app/client";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user